Expand description
Utilities for communicating between the server and the client with Leptos.
Structs§
- A reference-counted resource that only loads its data locally on the client.
- A reference-counted resource that only loads once.
- A reference-counted asynchronous resource.
- An
ArcAction
that can be used to call a server function. - An
ArcMultiAction
that can be used to call a server function. - A resource that only loads its data locally on the client.
- A resource that only loads once.
- A
Future
that is ready when anArcAsyncDerived
is finished loading or reloading, and contains its value..await
ing this clones the valueT
. - An asynchronous resource.
- An
Action
that can be used to call a server function. - An error that can be caused by a server action.
- A
MultiAction
that can be used to call a server function. - A smart pointer that allows you to share identical, synchronously-loaded data between the server and the client.
- Used to prevent resources from actually loading, in environments (like server route generation) where they are not needed.
Traits§
- Decodes data from a string.
- Encodes data into a string.